home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-25 | 521 b | 28 lines |
- #
- # @(#)Makefile 1.2 8/21/94
- #
- # Makefile for "uncgi"
- #
-
- #
- # Set this to the directory where your CGI scripts live. Uncgi will look
- # there for backend scripts.
- #
- CGI_BIN = /home/gerbilmeister/www/cgi-bin
-
- #
- # Set this to the directory you'd like to install uncgi in, if different
- # from CGI_BIN.
- #
- DESTDIR = $(CGI_BIN)
-
- uncgi: uncgi.c
- $(CC) $(CFLAGS) -DCGI_BIN='"$(CGI_BIN)"' -o $@ uncgi.c
-
- install: uncgi
- cp uncgi $(DESTDIR)
- chmod 755 $(DESTDIR)/uncgi
-
- shar:
- shar README patchlevel.h Makefile uncgi.c > uncgi.shar
-